home *** CD-ROM | disk | FTP | other *** search
- //
- // Controller.h
- // AddressBookToCSV
- //
- // Created by Ken Ferry on Thu Jun 17 2004.
- // Copyright (c) 2004 Ken Ferry. All rights reserved.
- //
-
- #import <Cocoa/Cocoa.h>
-
- @interface Controller : NSWindowController
- {
- }
-
- - (IBAction)exportAddressBook:(id)sender;
-
- - (BOOL)exportAddressBookToFile:(NSString *)path;
- - (NSData *)csvFormatAddressBook;
- - (NSData *)csvFormatDatabaseForTestGroup;
- - (NSData *)csvFormatDatabaseForPersonEnumerator:(NSEnumerator *)personEnumerator;
-
-
- @end
-